home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr35 / tx2mb242.zip / ABNORMAL.BAT next >
DOS Batch File  |  1993-06-29  |  720b  |  14 lines

  1. @echo off
  2. rem ┌─────────────────────────────────────────────────────────────────────────┐
  3. rem │ This batch file uses a public domain GREP utility to search the daily   │
  4. rem │ caller logs for abnormal disconnects, sorts them by name, then uses     │
  5. rem │ TXT2MSG to insert the report to the Main Board conference as a R/O (-r) │
  6. rem │ message to the "SYSOP" from "Abnormal Disconnects"                      │
  7. rem └─────────────────────────────────────────────────────────────────────────┘
  8. echo ** Searching for abnormal disconnects...
  9. grep Abnormal k:\pcb\stats\caller?. >Abnormal.t1
  10. sort <Abnormal.t1  >Abnormal.log /+22
  11. TXT2MSG 0 Abnormal.log "-fAbnormal Disconnects" -r
  12. del abnormal.t1
  13. del abnormal.log
  14.